CHtmlRemoval.cs
Code Type: C# Class
Uses Classes: N/A


Lines of Code: 37

public static class CHtmlRemoval

	Methods to remove HTML from strings. 

public static string StripTagsRegex(string source)

	Remove HTML from string with Regex. 

public static string StripTagsRegexCompiled(string source)

	Remove HTML from string with compiled Regex.

public static string StripTagsCharArray(string source)

	Remove HTML tags from string using char array. 

	

